home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2 - Developers' Solutions / Delphi 2 Developers' Solutions.iso / dds / chap07 / howto06 / delphi10 / soundex / soundtst.exe / 0 / RCDATA / TEMPLOYEESEARCHFORM / TEMPLOYEESEARCHFORM.txt
Encoding:
Text File  |  1996-04-14  |  1.4 KB  |  71 lines

  1. object EmployeeSearchForm: TEmployeeSearchForm
  2.   Left = 284
  3.   Top = 144
  4.   Width = 494
  5.   Height = 390
  6.   Caption = 'Employee Soundex Search'
  7.   Font.Color = clWindowText
  8.   Font.Height = -10
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = []
  11.   PixelsPerInch = 96
  12.   TextHeight = 13
  13.   object EmployeeDBGrid: TDBGrid
  14.     Left = 7
  15.     Top = 46
  16.     Width = 468
  17.     Height = 150
  18.     DataSource = EmployeeDataSource
  19.     TabOrder = 2
  20.     TitleFont.Color = clWindowText
  21.     TitleFont.Height = -10
  22.     TitleFont.Name = 'MS Sans Serif'
  23.     TitleFont.Style = []
  24.   end
  25.   object MatchingDBGrid: TDBGrid
  26.     Left = 7
  27.     Top = 202
  28.     Width = 468
  29.     Height = 150
  30.     DataSource = MatchingDataSource
  31.     TabOrder = 3
  32.     TitleFont.Color = clWindowText
  33.     TitleFont.Height = -10
  34.     TitleFont.Name = 'MS Sans Serif'
  35.     TitleFont.Style = []
  36.   end
  37.   object SearchEdit: TEdit
  38.     Left = 104
  39.     Top = 7
  40.     Width = 157
  41.     Height = 21
  42.     TabOrder = 0
  43.   end
  44.   object SoundexSearchButton: TButton
  45.     Left = 280
  46.     Top = 7
  47.     Width = 98
  48.     Height = 26
  49.     Caption = 'Soundex Search'
  50.     Default = True
  51.     TabOrder = 1
  52.     OnClick = SoundexSearchButtonClick
  53.   end
  54.   object EmployeeDataSource: TDataSource
  55.     DataSet = EmployeeTable
  56.     Left = 8
  57.     Top = 8
  58.   end
  59.   object MatchingDataSource: TDataSource
  60.     Left = 40
  61.     Top = 8
  62.   end
  63.   object EmployeeTable: TTable
  64.     Active = True
  65.     DatabaseName = 'DBDEMOS'
  66.     TableName = 'EMPLOYEE.DB'
  67.     Left = 72
  68.     Top = 8
  69.   end
  70. end
  71.